home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mgr / src / makefile < prev    next >
Makefile  |  1990-09-27  |  1KB  |  38 lines

  1. #                        Copyright (c) 1988,1989 Bellcore
  2. #                            All Rights Reserved
  3. #       Permission is granted to copy or use this program, EXCEPT that it
  4. #       may not be sold for profit, the copyright notice must be reproduced
  5. #       on copies, and credit should be given to Bellcore where it is due.
  6. #       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  7.  
  8. #    $Header: Makefile,v 1.2 89/05/23 08:33:45 sau Exp $
  9. #    $Source: /mnt/sau/bitblt/DEC/RCS/Makefile,v $
  10.  
  11. #    makefile for the Atari blit library (adapted from S. A. Uhler)
  12.  
  13. #    Compile flags
  14. #      INVERT    - invert the sense of black and white
  15. #      UNROLL - Unroll the inner loops
  16. #      NOCLIP    - Don't do clipping on bit-blits
  17.  
  18. START=.
  19. CFLAGS= $(FLAG) -I. -DUNROLL
  20. CC=gcc
  21. AR=gcc-ar
  22.  
  23. LIBOBJS=bitmap.o blit.o line.o pixel.o bit_on.o
  24.  
  25. blitlib.a:        $(LIBOBJS)
  26.             $(AR) rs blitlib.a $(LIBOBJS)
  27.  
  28. rops:        rops.o bitmap.o blit.o
  29.             $(CC) $(CFLAGS) -o rops rops.o blit.o bitmap.o
  30.  
  31. test_rop:    test_rop.o bitmap.o blit.o
  32.             $(CC) $(CFLAGS) -o test_rop test_rop.o blit.o bitmap.o
  33.  
  34. bitmap.o blit.o line.o pixel.o bit_on.o:    bitmap.h
  35.  
  36. clean:
  37.     -rm -f *.o core blit.c
  38.